home *** CD-ROM | disk | FTP | other *** search
/ isnet Internet / Isnet Internet CD.iso / prog / hiz / 09 / 09.exe / adynware.exe / perl / lib / IO.pm < prev    next >
Encoding:
Perl POD Document  |  1999-12-28  |  504 b   |  36 lines

  1.  
  2. package IO;
  3.  
  4. =head1 NAME
  5.  
  6. IO - load various IO modules
  7.  
  8. =head1 SYNOPSIS
  9.  
  10.     use IO;
  11.  
  12. =head1 DESCRIPTION
  13.  
  14. C<IO> provides a simple mechanism to load all of the IO modules at one go.
  15. Currently this includes:
  16.  
  17.       IO::Handle
  18.       IO::Seekable
  19.       IO::File
  20.       IO::Pipe
  21.       IO::Socket
  22.  
  23. For more information on any of these modules, please see its respective
  24. documentation.
  25.  
  26. =cut
  27.  
  28. use IO::Handle;
  29. use IO::Seekable;
  30. use IO::File;
  31. use IO::Pipe;
  32. use IO::Socket;
  33.  
  34. 1;
  35.  
  36.